f39ed344be54a2c571299b164f1752535b36c106,framework/widget/src/org/ofbiz/widget/cache/AbstractCache.java,AbstractCache,getCache,#String#,47

Before Change


    }

    protected UtilCache getCache(String widgetName) {
        synchronized (UtilCache.utilCacheTable) {
            return (UtilCache) UtilCache.utilCacheTable.get(getCacheName(widgetName));
        }
    }

After Change


    }

    protected UtilCache getCache(String widgetName) {
        return UtilCache.findCache(getCacheName(widgetName));
    }

    protected UtilCache getOrCreateCache(String widgetName) {